home *** CD-ROM | disk | FTP | other *** search
/ Explorer - Mosaic & Web / Explorer - Mosaic & Web.iso / tools / wing / demos / static / static.rc < prev    next >
Encoding:
Text File  |  1994-08-20  |  1.5 KB  |  57 lines

  1. /*
  2.  *    Static.RC
  3.  *
  4.  *    (C) Copyright Microsoft Corp. 1993.  All rights reserved.
  5.  *
  6.  *    You have a royalty-free right to use, modify, reproduce and 
  7.  *    distribute the Sample Files (and/or any modified version) in 
  8.  *    any way you find useful, provided that you agree that 
  9.  *    Microsoft has no warranty obligations or liability for any 
  10.  *    Sample Application Files which are modified. 
  11.  */
  12.  
  13. #include <windows.h>
  14. #include "Static.h"
  15.  
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. //
  19. // Icon
  20. //
  21.  
  22. STATICAPP  ICON   DISCARDABLE Static.ico
  23.  
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. //
  27. // Dialog
  28. //
  29.  
  30. STATICAPP DIALOG DISCARDABLE  22, 17, 144, 75
  31. STYLE DS_MODALFRAME | WS_POPUP
  32. FONT 8, "System"
  33. BEGIN
  34.     ICON    "STATICAPP",               -1,9,23,18,20
  35.     CTEXT   "Microsoft Windows",           -1,40,5,63,8
  36.     CTEXT   "Static: A Sample Application",    -1,27,14,91,8
  37.     LTEXT   "By Robert B. Hess",           -1,41,23,62,8
  38.     CTEXT   "Version 1.00",               -1,51,32,42,8
  39.     CTEXT   "Copyright 1994, Microsoft Corp.", -1,20,47,103,8
  40.     DEFPUSHBUTTON   "OK",IDOK,53,59,32,14,WS_GROUP
  41. END
  42.  
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. //
  46. // Menu
  47. //
  48.  
  49. STATICAPP MENU DISCARDABLE
  50. BEGIN
  51.     POPUP "&File"
  52.     BEGIN
  53.         MENUITEM "&About...",                   MENU_ABOUT
  54.         MENUITEM "E&xit",                       MENU_EXIT
  55.     END
  56. END
  57.